diff options
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/pumpa/PKGBUILD | 22 | ||||
-rw-r--r-- | pcr/pumpa/pumpa.install | 12 |
2 files changed, 9 insertions, 25 deletions
diff --git a/pcr/pumpa/PKGBUILD b/pcr/pumpa/PKGBUILD index e6f6fd6fa..e86f796b0 100644 --- a/pcr/pumpa/PKGBUILD +++ b/pcr/pumpa/PKGBUILD @@ -1,23 +1,19 @@ -# Maintainer (Arch): Eugenio M. Vigo <emvigo@gmail.com> +# Contributor (Arch): Eugenio M. Vigo <emvigo@gmail.com> # Contributor (Arch): speps <speps dot aur dot archlinux dot org> # Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> pkgname=pumpa -pkgver=0.9.1 -pkgrel=3 -pkgdesc="A simple pump.io client written in C++ and Qt" -arch=('i686' 'x86_64') +pkgver=0.9.2 +pkgrel=1 +pkgdesc="simple pump.io client written in C++ and Qt" +arch=('i686' 'x86_64' 'armv7h') url="http://pumpa.branchable.com" license=('GPL3') -depends=('qt5-base' 'aspell' 'hicolor-icon-theme' 'tidyhtml') -install="$pkgname.install" -source=("https://saz.im/software/downloads/pumpa/pumpa-${pkgver}.tar.gz") -sha256sums=("c45c7eb3fad527d59ecc9b25a6b29d80c0231d3e733556de23665873a803daa2") +depends=('qt5-base' 'aspell' 'hicolor-icon-theme' 'tidy' 'desktop-file-utils') +makedepends=('git') +source=(${pkgname}-${pkgver}::git://pumpa.branchable.com/#tag=v${pkgver}) +sha256sums=('SKIP') -# A small comentary on the source URL. I'm avoiding using the git tags from -# pumpa.branchable.com because it would imply much more work (cloning the repo -# specifying the tag, etc.). The source URL points to the personal server of the -# main developer of Pumpa, "Sazius". build() { cd $pkgname-$pkgver diff --git a/pcr/pumpa/pumpa.install b/pcr/pumpa/pumpa.install deleted file mode 100644 index 029294d67..000000000 --- a/pcr/pumpa/pumpa.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor 2> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} |