summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2013-10-06 00:23:51 +0800
committerTing-Wei Lan <lantw44@gmail.com>2013-10-06 00:23:51 +0800
commit5ef7cea2e8b359a362187b99d6172378702eafe2 (patch)
treebeeb3d4e801ae30e6644abaf0370af283417e6e7
parenteaa8aa215aa4e6a22399245e251d6e63cca417bc (diff)
downloadAUR4-PKGBUILD-5ef7cea2e8b359a362187b99d6172378702eafe2.tar
AUR4-PKGBUILD-5ef7cea2e8b359a362187b99d6172378702eafe2.tar.gz
AUR4-PKGBUILD-5ef7cea2e8b359a362187b99d6172378702eafe2.tar.bz2
AUR4-PKGBUILD-5ef7cea2e8b359a362187b99d6172378702eafe2.tar.lz
AUR4-PKGBUILD-5ef7cea2e8b359a362187b99d6172378702eafe2.tar.xz
AUR4-PKGBUILD-5ef7cea2e8b359a362187b99d6172378702eafe2.tar.zst
AUR4-PKGBUILD-5ef7cea2e8b359a362187b99d6172378702eafe2.zip
qelly-git: 1.0a (initial commit)
-rw-r--r--qelly-git/.SRCINFO17
-rw-r--r--qelly-git/PKGBUILD35
2 files changed, 52 insertions, 0 deletions
diff --git a/qelly-git/.SRCINFO b/qelly-git/.SRCINFO
new file mode 100644
index 0000000..41b78b4
--- /dev/null
+++ b/qelly-git/.SRCINFO
@@ -0,0 +1,17 @@
+pkgbase = qelly-git
+ pkgdesc = Qelly is a Qt port of Nally
+ pkgver = 1.0a.9.g2d54801
+ pkgrel = 1
+ url = https://github.com/uranusjr/Qelly
+ arch = x86_64
+ arch = i686
+ license = GPL
+ depends = qt4
+ depends = libqxt
+ provides = qelly
+ conflicts = qelly
+ source = qelly-git::git+https://github.com/uranusjr/Qelly.git
+ md5sums = SKIP
+
+pkgname = qelly-git
+
diff --git a/qelly-git/PKGBUILD b/qelly-git/PKGBUILD
new file mode 100644
index 0000000..8dd9161
--- /dev/null
+++ b/qelly-git/PKGBUILD
@@ -0,0 +1,35 @@
+# Maintainer: lantw44 (at) gmail (dot) com
+
+pkgname=qelly-git
+pkgver=1.0a.9.g2d54801
+pkgrel=1
+pkgdesc="Qelly is a Qt port of Nally"
+arch=('x86_64' 'i686')
+url="https://github.com/uranusjr/Qelly"
+license=('GPL')
+depends=('qt4' 'libqxt')
+makedepends=()
+conflicts=('qelly')
+provides=('qelly')
+source=("$pkgname::git+https://github.com/uranusjr/Qelly.git")
+md5sums=('SKIP')
+
+pkgver() {
+ cd "$pkgname"
+ local ver="$(git describe --long)"
+ ver="${ver#v}"
+ ver="${ver//-/.}"
+ printf "%s" "$ver"
+}
+
+build() {
+ cd "$pkgname"
+ qmake-qt4
+ make
+}
+
+package() {
+ cd "$pkgname"
+ mkdir -p "$pkgdir/usr/bin"
+ install -m 755 "bin/Qelly" "$pkgdir/usr/bin"
+}