blob: 75766b3582dc166674e7f9aa137459fa62547ef5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: Qt Cryptographic Architecture
# URL: http://delta.affinix.com/qca/
# Maintainer: NuTyX core team
# Packager: floreal.c at orange dot fr
# Depends on: qt
name=qca
version=2.0.1
release=3
source=(http://delta.affinix.com/download/$name/2.0/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make INSTALL_ROOT=$PKG install
rm -f $(find $PKG -name '*.debug') $(find $PKG -name 'README')
}
|