#Packager: George Vlahavas pkgname=randomname pkgver=0.1.0 pkgrel=1gv source=(https://github.com/gapan/randomname/archive/refs/tags/$pkgver.tar.gz) docs=("readme.md" "copying" "authors") url=https://github.com/gapan/randomname slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "randomname (A random name generator)" "randomname is a program (and library) that generates random names. If" "you often need to create somewhat transient things with names that are" "easy to remember, you may find this helpful. randomname can output" "names with 1 to 3 parts that are randomly chosen from lists of" "adjectives, animals, colors, periodic table elements, notable people," "nouns and numbers." ) build() { cd $startdir/src/$pkgname-$pkgver meson setup \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --infodir=/usr/info \ --localstatedir=/var \ --mandir=/usr/man \ --sysconfdir=/etc \ --strip \ build meson compile -C build -j $numjobs --verbose meson install -C build --destdir $startdir/pkg/ }