blob: 937b3b488e4f031a6c3c8d6e72e89c3011317ebc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Contient librairie audio
# URL: http://www.gnu.org/software/gnutls/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=libtasn1
version=2.11
release=1
source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
rm -rf $PKG/usr/share/info/dir
}
|