diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2013-10-22 19:03:48 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-06-08 12:21:37 +0200 |
commit | a3663404df89190fb092d2fa05ca9bf1dde093b4 (patch) | |
tree | de2919af5aa525217aa85668b69f47c84d3693b4 /PKGBUILD | |
parent | b859f6c12f90237acee1ca63ea850ed53bbd61a4 (diff) | |
download | pkgbuilds-a3663404df89190fb092d2fa05ca9bf1dde093b4.tar.xz |
did some shit, too lazy to split things up
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -3,7 +3,7 @@ pkgname=pcmanfm-git pkgver=1.1.2.r36.g9b9dd4c -pkgrel=1 +pkgrel=2 pkgdesc="An extremely fast, lightweight, yet feature-rich file manager with tabbed browsing" arch=('i686' 'x86_64') url="http://pcmanfm.sourceforge.net/" @@ -15,27 +15,23 @@ optdepends=('gvfs: mounting of local and remote drives' provides=('pcmanfm') conflicts=('pcmanfm') install=pcmanfm.install -source=('git://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/pcmanfm') +source=('git+https://pcmanfm.git.sourceforge.net/gitroot/pcmanfm/pcmanfm') md5sums=('SKIP') pkgver() { cd pcmanfm - printf "%s" "$(git describe --always --long | sed 's/-/-r/' | tr - .)" } build() { cd pcmanfm - - msg "Starting make..." ./autogen.sh ./configure --prefix=/usr --sysconfdir=/etc make LDFLAGS="-lm ${LDFLAGS}" } package() { - cd pcmanfm - make DESTDIR="$pkgdir" install + make -C pcmanfm DESTDIR="$pkgdir" install } # vim: set ts=4 sw=4 noet: |