41 lines
		
	
	
		
			866 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			866 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Maintainer: Jack L. Frost <fbt@fleshless.org>
 | 
						|
 | 
						|
pkgname='loksh'
 | 
						|
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/releases/download/$pkgver/src.tar.xz" )
 | 
						|
 | 
						|
#_flag_static=1
 | 
						|
if (( _flag_static )); then
 | 
						|
	makedepends+=( 'musl' )
 | 
						|
	_makeopts=( 'CC=musl-gcc' 'LDFLAGS=-static' )
 | 
						|
else
 | 
						|
	depends=( 'libbsd' )
 | 
						|
	_makeopts=( 'LDFLAGS=-lbsd' )
 | 
						|
fi
 | 
						|
 | 
						|
build() {
 | 
						|
	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 "$pkgname"
 | 
						|
	DESTDIR="$pkgdir" ninja -C output install
 | 
						|
}
 | 
						|
 | 
						|
sha1sums=('fc5f081423fcb922d02e97b733e4b45c8a359eb2')
 |