blob: 58f06a374e1d737a190a6e4e3a98c045c71a1096 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: QConf permet d'avoir de jolies script de configuration pour vos projets basés sur qmake
# URL: http://www.cmake.org
# Maintainer: NuTyX packager team
# Packager: tnut at nutyx dot com
# Depends on: qt
# Run on: qt
name=qconf
version=1.4
release=1
source=(http://delta.affinix.com/download/qconf-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make INSTALL_ROOT=$PKG install
}
|