blob: 0f7b3e1ebc9e1f0be80c184c73c877e109e71ff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: Module python pour GestPkg
# URL: http://www.nutyx.org
# Maintainer: NuTyX core team
# Packager: ferarduansednan at laposte dot net
# Depends on: python
name=gestpkg-module
version=1.1
release=2
source=(http://nutyx.meticul.eu/files/$name-$version-src.tar.gz \
http://nutyx.meticul.eu/files/patchs/$name/$name-$version-syn-01.patch )
build() {
cd ./$name-$version-src
patch -Np1 -i ../$name-$version-syn-01.patch
python setup.py install --root=$PKG
}
|