summaryrefslogtreecommitdiffstats
path: root/perlqt/Pkgfile
blob: fdf47625448c6e121d5365614cf4410c7dc5f78b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Description: Implementation de Perl pour KDE4
# URL: http://www.kde.org
# Maintainer: KDE Project : https://projects.kde.org/projects/kde
# Packager: lesibel at free dot fr
# Depends on: cmake,automoc4,smokeqt,qwt
# Run on: smokeqt,qwt

name=perlqt
version=4.9.0
release=1
source=( ftp://ftp.kde.org/pub/kde/stable/$version/src/$name-$version.tar.xz)

build() {
	cd $name-*
	mkdir build
	cd build
	cmake ../ -DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_BUILD_TYPE=Release \
		-DCMAKE_SKIP_RPATH=ON 
	make
	make DESTDIR=$PKG install
}