mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 05:17:07 +02:00
testing/py-django-js-asset: new aport
This commit is contained in:
parent
cb631983be
commit
58412f1c9e
49
testing/py-django-js-asset/APKBUILD
Normal file
49
testing/py-django-js-asset/APKBUILD
Normal file
@ -0,0 +1,49 @@
|
||||
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
|
||||
# Maintainer:
|
||||
pkgname=py-django-js-asset
|
||||
pkgver=0.1.1
|
||||
pkgrel=0
|
||||
pkgdesc="No description provided"
|
||||
url="https://github.com/matthiask/django-js-asset"
|
||||
arch="noarch"
|
||||
license="Custom"
|
||||
depends="py-django"
|
||||
makedepends="python2-dev python3-dev py-setuptools"
|
||||
subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3"
|
||||
options="!check" #no testsuite
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/matthiask/django-js-asset/archive/$pkgver.tar.gz"
|
||||
builddir="$srcdir"/django-js-asset-$pkgver
|
||||
|
||||
build() {
|
||||
cd "$builddir"
|
||||
python2 setup.py --quiet build
|
||||
python3 setup.py --quiet build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
mkdir -p "$pkgdir"/usr/bin
|
||||
}
|
||||
|
||||
_py2() {
|
||||
depends="${depends//py-/py2-}"
|
||||
_py python2
|
||||
}
|
||||
|
||||
_py3() {
|
||||
depends="${depends//py-/py3-}"
|
||||
_py python3
|
||||
}
|
||||
|
||||
_py() {
|
||||
local python="$1"
|
||||
local pyver="${1:6:1}"
|
||||
pkgdesc="$pkgdesc (for $python)"
|
||||
depends="$depends $python"
|
||||
install_if="$pkgname=$pkgver-r$pkgrel $python"
|
||||
|
||||
cd "$builddir"
|
||||
$python setup.py --quiet install --prefix=/usr --root="$subpkgdir"
|
||||
}
|
||||
|
||||
sha512sums="31fc0762b6e83121f2d386ac084d9e89e2a867716850204a8c67c0e7ce2203158db9ad0bd1d7a92437209176346c72d10b938f4db66fd2ede8358471dec62dd4 py-django-js-asset-0.1.1.tar.gz"
|
Loading…
Reference in New Issue
Block a user