Signed-off-by: fbt <fbt@fleshless.org>
This commit is contained in:
Jack L. Frost 2022-02-11 02:48:41 +03:00
parent cc88171f6d
commit 578547bd40
1 changed files with 5 additions and 5 deletions

View File

@ -1,17 +1,17 @@
# Maintainer: Jack L. Frost <fbt@fleshless.org> # Maintainer: Jack L. Frost <fbt@fleshless.org>
pkgname='loksh' pkgname='loksh'
pkgver='6.8.1' pkgver='7.0'
pkgrel=1 pkgrel=1
pkgdesc="A Linux port of OpenBSD's ksh targeting musl" pkgdesc="A Linux port of OpenBSD's ksh targeting musl"
arch=( 'i686' 'x86_64' ) arch=( 'i686' 'x86_64' )
url='https://github.com/dimkr/loksh' url='https://github.com/dimkr/loksh'
license=( 'custom' ) license=( 'custom' )
makedepends=( 'meson' ) makedepends=( 'meson' )
source=( "https://github.com/dimkr/loksh/releases/download/$pkgver/src.tar.xz" ) source=( "https://github.com/dimkr/loksh/releases/download/$pkgver/loksh-$pkgver.tar.xz" )
build() { build() {
cd "$pkgname" cd "$pkgname-$pkgver"
meson --prefix=/ \ meson --prefix=/ \
--sysconfdir=/etc \ --sysconfdir=/etc \
--mandir=/usr/share/man \ --mandir=/usr/share/man \
@ -25,8 +25,8 @@ build() {
} }
package() { package() {
cd "$pkgname" cd "$pkgname-$pkgver"
DESTDIR="$pkgdir" ninja -C output install DESTDIR="$pkgdir" ninja -C output install
} }
sha1sums=('f6624c06c2237109ec6c129cf86969aff5dd4cbd') sha1sums=('9611e85b4621a196e0db9f82e9ff9ee833f419fe')