diff options
author | root <root@rshg054.dnsready.net> | 2013-02-10 01:12:52 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-02-10 01:12:52 -0800 |
commit | 1bb2648cde916ac27d3dd75d7b64a4ddc89787b7 (patch) | |
tree | 016bfa1969323404c37dbef29cfc7242a5a8e9f3 /gis/qwt5/PKGBUILD | |
parent | e9c244cac8e5dc1c59c7e8b7bc885fef04224b70 (diff) |
Sun Feb 10 01:12:35 PST 2013
Diffstat (limited to 'gis/qwt5/PKGBUILD')
-rw-r--r-- | gis/qwt5/PKGBUILD | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/gis/qwt5/PKGBUILD b/gis/qwt5/PKGBUILD deleted file mode 100644 index f998a0765..000000000 --- a/gis/qwt5/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# Maintainer: Eugen Zagorodniy <e dot zagorodniy at gmail dot com> -# Contributor: Ronald van Haren <ronald.archlinux.org> - -pkgname=qwt5 -pkgver=5.2.2 -pkgrel=1 -pkgdesc="Qt Widgets for Technical Applications (version 5.X)" -arch=('i686' 'x86_64') -url="http://qwt.sourceforge.net/" -depends=('qt>=4.5.1') -options=('!makeflags') -license=("custom:$pkgname") -provides=('qwt') -source=("http://downloads.sourceforge.net/sourceforge/qwt/qwt-$pkgver.tar.bz2" \ - "qwtconfig-archlinux.pri") -md5sums=('70d77e4008a6cc86763737f0f24726ca' - '15db52c3312b5f8f7cbbdabc4831591b') -build() { - cd ${srcdir}/qwt-${pkgver} - - # copy our config file to the right place - install -Dm644 ${srcdir}/qwtconfig-archlinux.pri \ - ${srcdir}/qwt-${pkgver}/qwtconfig.pri - - # build qwt: - qmake qwt.pro - make || return 1 -} - -package() { - cd ${srcdir}/qwt-${pkgver} - - make INSTALL_ROOT=${pkgdir} QTDIR=/usr install - - # rename conlicting symlink - mv ${pkgdir}/usr/lib/libqwt.so ${pkgdir}/usr/lib/libqwt5.so - - # move html docs to propee place and move man pages to avoid conflict - # with qwt from [extra] - install -d ${pkgdir}/usr/share/doc/${pkgname} - mv ${pkgdir}/usr/share/html ${pkgdir}/usr/share/doc/${pkgname}/ - mv ${pkgdir}/usr/share/man ${pkgdir}/usr/share/doc/${pkgname}/ - - # install licence - install -Dm644 ${srcdir}/qwt-${pkgver}/COPYING \ - ${pkgdir}/usr/share/licenses/${pkgname}/license.txt -} |