summaryrefslogtreecommitdiffstats
path: root/fontmatrix/PKGBUILD
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-12-16 11:51:24 +0100
committerFlorian Pritz <bluewind@xinu.at>2012-12-16 11:51:24 +0100
commitc6000c9d9949b3326fb82f02431899ab6774b960 (patch)
tree2453cd564b0f382f3d8ccd893df8ebe2e9aeda71 /fontmatrix/PKGBUILD
parent453f0f12918af35bd8e1e5f049841360f37d62e4 (diff)
downloadaur-packages-c6000c9d9949b3326fb82f02431899ab6774b960.tar.gz
aur-packages-c6000c9d9949b3326fb82f02431899ab6774b960.tar.xz
big cleanup
Diffstat (limited to 'fontmatrix/PKGBUILD')
-rw-r--r--fontmatrix/PKGBUILD30
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
-}