summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-06-21 04:06:16 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-06-21 04:06:16 +0000
commit000001015cbeaabdc2e0f70899a6b810996f98cc (patch)
tree6b60a6c85f79811e19dc15e1930872b0c4c74d7b /community
parent2fd06aa8fa3c105c4c9161a060192d85dc3d4559 (diff)
Sat Jun 21 04:02:26 UTC 2014
Diffstat (limited to 'community')
-rw-r--r--community/libgit2/PKGBUILD12
-rw-r--r--community/spacefm/PKGBUILD37
-rw-r--r--community/spacefm/spacefm.install14
3 files changed, 6 insertions, 57 deletions
diff --git a/community/libgit2/PKGBUILD b/community/libgit2/PKGBUILD
index 7d1f23fd8..4345c73bb 100644
--- a/community/libgit2/PKGBUILD
+++ b/community/libgit2/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 104861 2014-01-27 17:22:44Z thestinger $
+# $Id: PKGBUILD 113375 2014-06-20 17:47:33Z thestinger $
# Maintainer: Daniel Micay <danielmicay@gmail.com>
# Contributor: Hilton Medeiros <medeiros.hilton@gmail.com>
# Contributor: Dave Reisner <d@falconindy.com>
pkgname=libgit2
-pkgver=0.20.0
+pkgver=0.21.0
pkgrel=1
pkgdesc="A linkable library for Git"
arch=('i686' 'x86_64')
@@ -13,21 +13,21 @@ depends=(zlib openssl libssh2)
makedepends=(cmake python)
license=('GPL2')
source=("https://github.com/libgit2/libgit2/archive/v${pkgver}.tar.gz")
-md5sums=('e35f613a37e11354f34249f2faa68237')
+md5sums=('06b598bf21b0536dcbf454dc63af2313')
build() {
- cd $pkgname-*
+ cd $pkgname-$pkgver
export LANG=en_US.UTF-8
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DTHREADSAFE=ON
make
}
check() {
- cd $pkgname-*
+ cd $pkgname-$pkgver
make test
}
package() {
- cd $pkgname-*
+ cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
diff --git a/community/spacefm/PKGBUILD b/community/spacefm/PKGBUILD
deleted file mode 100644
index 866897689..000000000
--- a/community/spacefm/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# $Id: PKGBUILD 108683 2014-04-01 08:51:46Z bpiotrowski $
-# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
-# Contributor: IgnorantGuru http://igurublog.wordpress.com/contact-ignorantguru/
-# Contributor: ridikulus_rat <the.ridikulus.rat@gmail.com>
-
-pkgname=spacefm
-pkgver=0.9.4
-pkgrel=1
-pkgdesc='Multi-panel tabbed file manager'
-arch=('i686' 'x86_64')
-url='http://ignorantguru.github.com/spacefm/'
-license=('GPL3')
-install=$pkgname.install
-depends=('gtk3' 'shared-mime-info' 'desktop-file-utils' 'startup-notification'
- 'systemd' 'bash')
-makedepends=('intltool' 'gettext')
-optdepends=('lsof: device processes'
- 'wget: plugin download'
- 'gksu: perform as root functionality'
- 'udevil: mount as non-root user and mount networks'
- 'udisks: mount as non-root user'
- 'udisks2: mount as non-root user')
-source=(https://github.com/IgnorantGuru/spacefm/archive/$pkgver.tar.gz)
-md5sums=('daeee7dcccea33d6258a0a9d783470c4')
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr \
- --disable-pixmaps \
- --with-gtk3
- make
-}
-
-package() {
- cd $pkgname-$pkgver
- make DESTDIR="$pkgdir" install
-}
diff --git a/community/spacefm/spacefm.install b/community/spacefm/spacefm.install
deleted file mode 100644
index 76a5d56b9..000000000
--- a/community/spacefm/spacefm.install
+++ /dev/null
@@ -1,14 +0,0 @@
-post_install() {
- update-mime-database /usr/share/mime > /dev/null
- update-desktop-database -q
- gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
- [[ -d /usr/share/icons/Faenza ]] && gtk-update-icon-cache -q -t -f /usr/share/icons/Faenza
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}