mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
24 lines
745 B
Bash
24 lines
745 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Contributor: Artem Sorokin <mail.dextor@gmail.com>
|
|
pkgname=polymer
|
|
pkgver=0.3.2
|
|
pkgrel=4
|
|
pkgdesc="A port of KDE QT style Plastik, which does not depend on any KDE libraries"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
url="http://static.int.pl/~mig21/dev/releases/polymer/"
|
|
depends=('qt3')
|
|
source=(http://www.kde-look.org/CONTENT/content-files/21748-polymer-0.3.2.tar.bz2)
|
|
md5sums=('5e566deb55586069378c85cb477f5005')
|
|
|
|
build() {
|
|
cd $startdir/src/polymer-$pkgver
|
|
|
|
. /etc/profile.d/qt3.sh
|
|
export PATH=$QTDIR/bin:$PATH
|
|
export QMAKESPEC=$QTDIR/mkspecs/linux-g++
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make libdir=$startdir/pkg/opt/qt/plugins/styles prefix=$startdir/pkg/usr install
|
|
}
|