summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorinvolution2025-01-13 02:44:21 -0500
committerinvolution2025-01-13 02:44:21 -0500
commitd22fa1a7e8ba68d97eca96d84f7a8dfa6bc727d9 (patch)
treefd1a35c61166a32bd0cb23569ded9b9368076743 /PKGBUILD
parenta15912b81213e3b53ffb3534c5590d4832678438 (diff)
downloadaur-d22fa1a7e8ba68d97eca96d84f7a8dfa6bc727d9.tar.gz
bump and add to ci
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD35
1 files changed, 15 insertions, 20 deletions
diff --git a/PKGBUILD b/PKGBUILD
index e5e2d5a08ae1..21ba60f4d1cd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,40 +1,35 @@
-# Maintainer: cyprus187 < cyprus187 AT noreply DOT archlinux DOT org>
+# Maintainer: envolution
+# Contributor: cyprus187 < cyprus187 AT noreply DOT archlinux DOT org>
# Contributor: FKonAUR <fkonaur at googlegroups dot com>
# Contributor: Amy Wilson <awils_1 at xsmail dot com>
# Contributor: Dimitris Kiziridis <ragouel at outlook dot com>
+# shellcheck shell=bash disable=SC2034,SC2154
pkgname=fopnu
-pkgver=1.64
+pkgver=1.67+1
+_pkgver=${pkgver/+/-}
pkgrel=1
pkgdesc='A new and powerful P2P File Sharing System'
arch=('x86_64' 'i686')
url='https://www.fopnu.com'
-license=('custom:fopnu')
-depends=('gtk2' 'hicolor-icon-theme' 'dbus-glib')
+license=('LicenseRef-custom')
+depends=('gtk3' 'hicolor-icon-theme' 'dbus-glib')
optdepends=('gconf: for shell integration')
-install='fopnu.install'
source=('LICENSE')
-source_i686=("https://download2.fopnu.com/download/fopnu-1.64-1.i686.manualinstall.tar.gz")
-source_x86_64=("https://download2.fopnu.com/download/fopnu-1.64-1.x86_64.manualinstall.tar.gz")
+source_i686=("https://download2.fopnu.com/download/fopnu-${_pkgver}.i686.manualinstall.tar.gz")
+source_x86_64=("https://download2.fopnu.com/download/fopnu-${_pkgver}.x86_64.manualinstall.tar.gz")
sha256sums=('0bc342f6415aa54c3d313af6a45152cb005024c7167d4fd0c71bfa004a2f8e4f')
-sha256sums_i686=('d7325b52060ef12b04b4b68921e2e1a80d73101711598f004852081b5e27d781')
-sha256sums_x86_64=('ce2c54716da4ff966f91e7b445d16c93901485f0121e839ae38ef99ecbaa3549')
+sha256sums_x86_64=('3bcc267fefe6a08665c597eaa337ed584001411d2a3dbc38d5eac2c5f995dcc7')
+sha256sums_i686=('e1f8fa13a44f85e6f09ec088cc94578dd2ba52a955dfa00fd2861364fe700146')
package() {
- if [ "$CARCH" == "x86_64" ]
- then
- cd "$srcdir/$pkgname-${pkgver}-${pkgrel}.x86_64.manualinstall"
- fi
-
- if [ "$CARCH" == "i686" ]
- then
- cd "$srcdir/$pkgname-${pkgver}-${pkgrel}.i686.manualinstall"
- fi
+ cd "$pkgname-${_pkgver}.${CARCH}.manualinstall"
install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
install -Dm644 $pkgname.png \
"$pkgdir/usr/share/icons/hicolor/48x48/apps/$pkgname.png"
install -Dm644 $pkgname.desktop \
"$pkgdir/usr/share/applications/$pkgname.desktop"
- install -Dm644 ../LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-} \ No newline at end of file
+ install -Dm644 $srcdir/LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+# vim:set ts=2 sw=2 et: