fbt
4ec858dc0f
All checks were successful
Package builder / BuildPackage (push) Successful in 46s
Signed-off-by: fbt <fbt@fleshless.org>
33 lines
740 B
Bash
33 lines
740 B
Bash
# Maintainer: Jack L. Frost <fbt@fleshless.org>
|
|
|
|
pkgname='loksh'
|
|
pkgver='7.6'
|
|
pkgrel=1
|
|
pkgdesc="A Linux port of OpenBSD's ksh targeting musl"
|
|
arch=( 'i686' 'x86_64' )
|
|
url='https://github.com/dimkr/loksh'
|
|
license=( 'custom' )
|
|
makedepends=( 'meson' )
|
|
source=( "https://github.com/dimkr/loksh/releases/download/$pkgver/loksh-$pkgver.tar.xz" )
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
meson --prefix=/ \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--datadir=/usr/share \
|
|
--localstatedir=/var \
|
|
--buildtype=plain \
|
|
--bindir=/usr/bin \
|
|
. output
|
|
|
|
ninja -C output
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
DESTDIR="$pkgdir" ninja -C output install
|
|
}
|
|
|
|
sha1sums=('19c46203f1cc9c7baa8b86f8cb76130011d2a047')
|