summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Newgard2016-01-14 18:23:51 -0600
committerDoug Newgard2016-01-14 18:23:51 -0600
commitf7c0cb41ccc379d194abd8022de4a89e374b4309 (patch)
tree23d38a4140590fcb3eda7962d69087ad0181899b
parent800c28d4119a7a4e4be84a6dac9b0ee875dfa57c (diff)
downloadaur-f7c0cb41ccc379d194abd8022de4a89e374b4309.tar.gz
Convert to release package
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD20
2 files changed, 12 insertions, 19 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 21bdeb715541..6ef2cfd4b9f3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,20 +1,21 @@
+# Generated by mksrcinfo v8
+# Fri Jan 15 00:23:25 UTC 2016
pkgbase = qwtpolar
pkgdesc = A Qwt library that contains classes for displaying values on a polar coordinate system.
- pkgver = 1.1
+ pkgver = 1.1.1
pkgrel = 1
url = http://qwtpolar.sourceforge.net/
arch = i686
arch = x86_64
license = custom:Qwt License, Version 1.0
- makedepends = subversion
depends = qt4>=4.8.5
depends = qwt>=6.1.0
- provides = qwtpolar=1.1
+ provides = qwtpolar=1.1.1
conflicts = qwtpolar
conflicts = qwtpolar-svn
conflicts = qwtpolar-svn-qt4
- source = qwtpolar::svn+https://svn.code.sf.net/p/qwtpolar/code/branches/qwtpolar-1.1
- md5sums = SKIP
+ source = http://sourceforge.net/projects/qwtpolar/files/qwtpolar/1.1.1/qwtpolar-1.1.1.tar.bz2
+ sha1sums = 38edf5220c971eef0e88fcc6db7c718e6198ccac
pkgname = qwtpolar
diff --git a/PKGBUILD b/PKGBUILD
index df3caf2d83e4..a2f365e6fcc0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,8 +2,7 @@
# Contributor: Gunther Schulz < mail at guntherschulz.de >
# Contributor: Kévin Guilloy <kevin at guilloy dot ath dot cx>
pkgname=qwtpolar
-_pkgver=1.1
-pkgver=1.1
+pkgver=1.1.1
pkgrel=1
pkgdesc="A Qwt library that contains classes for displaying values on a polar coordinate system."
arch=('i686' 'x86_64')
@@ -11,22 +10,15 @@ url="http://qwtpolar.sourceforge.net/"
license=('custom:Qwt License, Version 1.0')
depends=('qt4>=4.8.5'
'qwt>=6.1.0')
-makedepends=('subversion')
provides=("$pkgname=$pkgver")
conflicts=('qwtpolar'
'qwtpolar-svn'
'qwtpolar-svn-qt4')
-source=("qwtpolar::svn+https://svn.code.sf.net/p/qwtpolar/code/branches/qwtpolar-${_pkgver}")
-md5sums=('SKIP')
-
-pkgver() {
- cd "$pkgname"
- local ver="$(svnversion)"
- printf "%s.r%s" "${_pkgver}" "${ver//[[:alpha:]]}"
-}
+source=("http://sourceforge.net/projects/qwtpolar/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2")
+sha1sums=('38edf5220c971eef0e88fcc6db7c718e6198ccac')
build() {
- cd "$srcdir/$pkgname"
+ cd $pkgname-$pkgver
sed -i -e 's/$${QWT_POLAR_INSTALL_PREFIX}\/doc/\/usr\/share\/doc\/qwt\//' qwtpolarconfig.pri
sed -i -e 's/$${QWT_POLAR_INSTALL_PREFIX}\/include/\/usr\/include\/qwt\//' qwtpolarconfig.pri
@@ -41,7 +33,7 @@ build() {
}
package() {
- cd "$srcdir/$pkgname"
+ cd $pkgname-$pkgver
make INSTALL_ROOT="${pkgdir}"/ install
-} \ No newline at end of file
+}