diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2015-05-28 11:29:47 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2015-05-28 11:29:47 -0300 |
commit | fcb2d26cfa3b265200b5ae9e949d787a56bd4f14 (patch) | |
tree | 60bf5147d7608e6217b37e6807c386b3a43a2b36 /pcr/steadyflow/PKGBUILD | |
parent | 19fe7e7da672746eea0c2cae0307cea5e54fb23e (diff) | |
parent | b0bb663657922f0154dd8d60a6d5455f9a2bfe3c (diff) | |
download | abslibre-fcb2d26cfa3b265200b5ae9e949d787a56bd4f14.tar.gz abslibre-fcb2d26cfa3b265200b5ae9e949d787a56bd4f14.tar.bz2 abslibre-fcb2d26cfa3b265200b5ae9e949d787a56bd4f14.zip |
Merge branch 'master' of git://projects.parabola.nu/abslibre/abslibre
Diffstat (limited to 'pcr/steadyflow/PKGBUILD')
-rw-r--r-- | pcr/steadyflow/PKGBUILD | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/pcr/steadyflow/PKGBUILD b/pcr/steadyflow/PKGBUILD index 3be25b36e..fb32710f2 100644 --- a/pcr/steadyflow/PKGBUILD +++ b/pcr/steadyflow/PKGBUILD @@ -1,25 +1,26 @@ # Maintainer (Arch): M0Rf30 # Contributor (Arch): Dan Serban # Contributor (Arch): zbito <ztokarczyk at gmail dot com +# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> pkgname=steadyflow pkgver=0.2.0 -pkgrel=3 -pkgdesc="A download manager that aims for minimalism, ease of use, and a -clean, malleable codebase" -arch=('i686' 'x86_64' 'mips64el') +pkgrel=4 +pkgdesc="A download manager that aims for minimalism, ease of use, and a clean, malleable codebase" +arch=('i686' 'x86_64') url=https://launchpad.net/steadyflow license=('GPL3') install=steadyflow.install -depends=('desktop-file-utils' 'glib2' 'gtk3' 'gvfs' 'libgee' 'libnotify' -'libunique' 'libgee06') -makedepends=('cmake' 'vala') +depends=('desktop-file-utils' 'glib2' 'gtk3' 'gvfs' 'libgee06' 'libnotify' 'libunique') +makedepends=('cmake' 'vala' 'wget') conflicts=('steadyflow-bzr') -source=(http://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.xz https://launchpadlibrarian.net/55910801/steadyflow-64px.png) -md5sums=('16b9907c1d681e7f0a861f066d4fda0e' 'bbe025886f071ebfffa5fed350cced0c') +source=(http://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.xz + patch) build() { cd $pkgname-$pkgver + patch -Np1 -i ../patch + sed -i 's/ListStore/Gtk.ListStore/g' Steadyflow/FileListController.vala cmake -DCMAKE_INSTALL_PREFIX='/usr' -DCOMPILE_GSETTINGS_ON_INSTALL=NO -DWANT_AYATANA=NO make } @@ -28,6 +29,9 @@ package() { cd $pkgname-$pkgver make install DESTDIR="$pkgdir" mkdir -p "$pkgdir"/usr/share/pixmaps - cp "$srcdir"/steadyflow-64px.png "$pkgdir"/usr/share/pixmaps/steadyflow.png + install -D -m644 data/img/hicolor/64x64/apps/steadyflow.svg "$pkgdir"/usr/share/pixmaps/steadyflow.svg + #wget -O "$pkgdir"/usr/share/pixmaps/steadyflow.png https://launchpadlibrarian.net/55910801/steadyflow-64px.png } +md5sums=('16b9907c1d681e7f0a861f066d4fda0e' + '53ff49bd70c499fa75498ba06250e7fc') |