Compare commits

...

2 Commits

Author SHA1 Message Date
Jack L. Frost 8bf95171c1 meson
Signed-off-by: fbt <fbt@fleshless.org>
2020-05-23 14:43:20 +03:00
Jack L. Frost c11e16746b v++
Signed-off-by: fbt <fbt@fleshless.org>
2020-05-23 13:25:15 +03:00
1 changed files with 16 additions and 7 deletions

View File

@ -1,13 +1,13 @@
# Maintainer: Jack L. Frost <fbt@fleshless.org>
pkgname='loksh'
pkgver='6.7'
pkgver='6.7.1'
pkgrel=1
pkgdesc="A Linux port of OpenBSD's ksh targeting musl"
arch=( 'i686' 'x86_64' )
url='https://github.com/dimkr/loksh'
license=( 'custom' )
source=( "https://github.com/dimkr/loksh/archive/${pkgver}.tar.gz" )
source=( "https://github.com/dimkr/loksh/releases/download/$pkgver/src.tar.xz" )
#_flag_static=1
if (( _flag_static )); then
@ -19,13 +19,22 @@ else
fi
build() {
cd "$srcdir/$pkgname-$pkgver"
make ${_makeopts[*]}
cd "$pkgname"
meson --prefix=/ \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--datadir=/usr/share \
--localstatedir=/var \
--buildtype=plain \
--bindir=/bin \
. output
ninja -C output
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" BIN_NAME='loksh' install
cd "$pkgname"
DESTDIR="$pkgdir" ninja -C output install
}
sha1sums=('74563362bcf69177c49ea3980bf48b99c80bd931')
sha1sums=('fc5f081423fcb922d02e97b733e4b45c8a359eb2')