mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 13:57:14 +02:00
testing/lshell: new aport
This commit is contained in:
parent
107f426b73
commit
18fa92363d
38
testing/lshell/APKBUILD
Normal file
38
testing/lshell/APKBUILD
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||||
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||||
|
pkgname=lshell
|
||||||
|
pkgver=0.9.15.1
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="Python-based limited Shell"
|
||||||
|
url="http://ghantoos.org/limited-shell-lshell"
|
||||||
|
arch="noarch"
|
||||||
|
license="GPL3+"
|
||||||
|
depends="python"
|
||||||
|
depends_dev=""
|
||||||
|
makedepends="python-dev py-setuptools"
|
||||||
|
install=""
|
||||||
|
subpackages="$pkgname-doc"
|
||||||
|
source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
|
||||||
|
|
||||||
|
_builddir="$srcdir"/$pkgname-$pkgver
|
||||||
|
prepare() {
|
||||||
|
local i
|
||||||
|
cd "$_builddir"
|
||||||
|
for i in $source; do
|
||||||
|
case $i in
|
||||||
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$_builddir"
|
||||||
|
python setup.py build || return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$_builddir"
|
||||||
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
md5sums="0a6aca8d5f03b55289c1d3557c1bdc6d lshell-0.9.15.1.tar.gz"
|
Loading…
Reference in New Issue
Block a user