diff options
Diffstat (limited to 'fontmatrix')
-rw-r--r-- | fontmatrix/PKGBUILD | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/fontmatrix/PKGBUILD b/fontmatrix/PKGBUILD deleted file mode 100644 index 3e5c947..0000000 --- a/fontmatrix/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# Contributor: Michal Malek <michalm@jabster.pl> - -pkgname=fontmatrix -pkgver=0.6.0 -pkgrel=1 -pkgdesc="Font manager for Linux" -arch=('i686' 'x86_64') -url="http://fontmatrix.net/" -license=('GPL') -depends=('qt>=4.3.0') -makedepends=('cmake>=2.4.0') -source=(http://fontmatrix.net/archives/$pkgname-$pkgver-Source.tar.gz) -md5sums=('6a00c9448a50d3bab5acb4145f778f2d') - -build() -{ - export QTDIR=/usr - if [ "${CARCH}" = "i686" ]; then - export QMAKESPEC=/usr/share/qt/mkspecs/linux-g++-32 - elif [ "${CARCH}" = "x86_64" ]; then - export QMAKESPEC=/usr/share/qt/mkspecs/linux-g++-64 - fi - - cd $startdir/src/$pkgname-$pkgver-Source - mkdir build - cd build - cmake .. -DCMAKE_INSTALL_PREFIX=/usr || return 1 - make || return 1 - make DESTDIR=$startdir/pkg install || return 1 -} |