loksh/PKGBUILD

34 lines
733 B
Bash
Raw Normal View History

2015-06-08 09:31:02 +00:00
# Maintainer: Jack L. Frost <fbt@fleshless.org>
pkgname='loksh'
pkgver='6.7.1'
pkgrel=1
2015-06-08 09:31:02 +00:00
pkgdesc="A Linux port of OpenBSD's ksh targeting musl"
arch=( 'i686' 'x86_64' )
url='https://github.com/dimkr/loksh'
license=( 'custom' )
depends=( 'libbsd' )
makedepends=( 'meson' )
source=( "https://github.com/dimkr/loksh/releases/download/$pkgver/src.tar.xz" )
2015-06-08 09:31:02 +00:00
build() {
cd "$pkgname"
meson --prefix=/ \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--datadir=/usr/share \
--localstatedir=/var \
--buildtype=plain \
--bindir=/bin \
. output
ninja -C output
2015-06-08 09:31:02 +00:00
}
package() {
cd "$pkgname"
DESTDIR="$pkgdir" ninja -C output install
2015-06-08 09:31:02 +00:00
}
sha1sums=('fc5f081423fcb922d02e97b733e4b45c8a359eb2')