summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
Diffstat (limited to 'pcr')
-rw-r--r--pcr/python-efl/PKGBUILD46
-rw-r--r--pcr/tupi/PKGBUILD55
-rw-r--r--pcr/tupi/tupi.install13
-rw-r--r--pcr/xfce4-whiskermenu-plugin/PKGBUILD27
-rw-r--r--pcr/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.install11
5 files changed, 127 insertions, 25 deletions
diff --git a/pcr/python-efl/PKGBUILD b/pcr/python-efl/PKGBUILD
index e67489ad2..afca9af03 100644
--- a/pcr/python-efl/PKGBUILD
+++ b/pcr/python-efl/PKGBUILD
@@ -1,33 +1,29 @@
-# Maintainer (Arch): Doug Newgard <scimmia22 at outlook dot com>
+# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
+# Maintainer (AUR): Doug Newgard <scimmia22 at outlook dot com>
+
+pkgname=(python{,2}-efl)
+pkgver=1.10.0
+pkgdesc="Python bindings for the Enlightenment Foundataion Libraries"
+url="http://www.enlightenment.org"
+license=('LGPL3') # Also contains a copy of GPL3, but grep the source files; it's all LGPL
-_python=python
-pkgname=$_python-efl
-_pkgname=python-efl
-pkgver=1.8.1
pkgrel=1
-pkgdesc="$_python bindings for the Enlightenment Foundataion Libraries"
arch=('i686' 'x86_64')
-url="http://www.enlightenment.org"
-license=('LGPL3' 'GPL3')
-depends=('elementary' "$_python-dbus")
-provides=("$_python-ecore" "$_python-edje" "$_python-elementary" "$_python-emotion" "$_python-evas" "$_python-e_dbus")
-conflicts=("$_python-ecore" "$_python-edje" "$_python-elementary" "$_python-emotion" "$_python-evas" "$_python-e_dbus")
-source=("http://download.enlightenment.org/rel/bindings/python/$_pkgname-$pkgver.tar.bz2")
-sha1sums=('82b34b9336d517537b2a4032dff9d1e2de8b8dd8')
-build() {
- cd "$srcdir/$_pkgname-$pkgver"
+makedepends=(elementary python{,2}-dbus)
+source=("http://download.enlightenment.org/rel/bindings/python/$pkgname-$pkgver.tar.bz2")
+sha1sums=('ff94c3796348dd70545b59660d9d1cc67c1cb849')
- $_python setup.py build
+package_python-efl() {
+ depends=(elementary python-dbus)
+ cd "$srcdir/$pkgbase-$pkgver"
+ rm -rf build
+ python setup.py install --root="$pkgdir" --optimize=1
}
-package() {
- cd "$srcdir/$_pkgname-$pkgver"
-
- $_python setup.py install --root="$pkgdir"
-
-# install text files
- install -Dm644 AUTHORS "$pkgdir/usr/share/doc/$pkgname/AUTHORS"
- install -Dm644 README "$pkgdir/usr/share/doc/$pkgname/README"
- install -Dm644 changes.html "$pkgdir/usr/share/doc/$pkgname/changes.html"
+package_python2-efl() {
+ depends=(elementary python2-dbus)
+ cd "$srcdir/$pkgbase-$pkgver"
+ rm -rf build
+ python2 setup.py install --root="$pkgdir" --optimize=1
}
diff --git a/pcr/tupi/PKGBUILD b/pcr/tupi/PKGBUILD
new file mode 100644
index 000000000..c82eada67
--- /dev/null
+++ b/pcr/tupi/PKGBUILD
@@ -0,0 +1,55 @@
+# Maintainer: Márcio Silva <coadde@parabola.nu>
+
+pkgname=tupi
+pkgver=0.2.git20140724
+pkgcommit=ed31be0cb13892bc6839a58da3d1570e1f49876b # July 24, 2014
+pkgrel=1
+pkgdesc='Tupí is an 2D animation/drawing software (fork of KToon)'
+arch=(
+ x86_64
+ i686
+)
+url=http://www.maefloresta.com/portal/
+license=GPL2
+depends=(
+ desktop-file-utils
+ ffmpeg
+ quazip
+ qt5-multimedia
+ qt5-svg
+ shared-mime-info
+ xdg-utils
+)
+makedepends=(
+ git
+ qt5-tools
+ ruby
+)
+install=$pkgname.install
+source=$pkgname-$pkgver::git+git://anongit.kde.org/tupi#commit=$pkgcommit
+sha512sums=SKIP
+
+prepare() {
+ cd $pkgname-$pkgver
+ # fix /lib directory path
+ sed -i 's|/lib64|/lib|' configure.rb qonf/{configure,test}.rb
+ # fix qmake path
+ sed -i 's|qmake|qmake-qt5|g' configure
+ sed -i '\|path| s|qmake|qmake-qt5|
+ s|/bin/qmake|/bin/qmake-qt5|
+ ' qonf/qmake.rb
+ # fix /usr directory path
+ sed -i 's|/opt/|/usr/|' qonf/configure.rb
+}
+
+build() {
+ cd $pkgname-$pkgver
+ export QTDIR=/usr
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR=$pkgdir install
+}
diff --git a/pcr/tupi/tupi.install b/pcr/tupi/tupi.install
new file mode 100644
index 000000000..724bfce00
--- /dev/null
+++ b/pcr/tupi/tupi.install
@@ -0,0 +1,13 @@
+post_install() {
+ update-desktop-database -q
+ update-mime-database usr/share/mime &> /dev/null
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
diff --git a/pcr/xfce4-whiskermenu-plugin/PKGBUILD b/pcr/xfce4-whiskermenu-plugin/PKGBUILD
new file mode 100644
index 000000000..5351360a0
--- /dev/null
+++ b/pcr/xfce4-whiskermenu-plugin/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net>
+# Maintainer (AUR): Graeme Gott <graeme@gottcode.org>
+
+pkgname=xfce4-whiskermenu-plugin
+pkgver=1.4.0
+pkgrel=1
+pkgdesc="Alternate Xfce menu"
+arch=('i686' 'x86_64')
+url="http://gottcode.org/${pkgname}/"
+license=('GPL2')
+depends=('xfce4-panel')
+makedepends=('cmake')
+install=${pkgname}.install
+source=(http://gottcode.org/${pkgname}/${pkgname}-${pkgver}-src.tar.bz2)
+md5sums=('0c78f2b1cb3883d636cb616ab96e92be')
+sha256sums=('0f75f4551357a19200d14aa4df69755291a9db1b6fd49ab7ac51fd795c0a87e2')
+
+build() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib
+ make
+}
+
+package() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ make install DESTDIR="${pkgdir}"
+}
diff --git a/pcr/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.install b/pcr/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.install
new file mode 100644
index 000000000..81f2ba659
--- /dev/null
+++ b/pcr/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin.install
@@ -0,0 +1,11 @@
+post_install() {
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}