summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorgrufo2021-05-03 05:19:46 +0200
committergrufo2021-05-03 05:19:46 +0200
commitfd7c72a906893ab1726e383d805f935240daadfc (patch)
treedccb9fb4208a70e431eb066ff64c4b4c0c0b07e6
parentfe2a59b767e46cece038ed26fa271c66f2e061aa (diff)
downloadaur-fd7c72a906893ab1726e383d805f935240daadfc.tar.gz
New release (0.2.1-1)
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD18
2 files changed, 9 insertions, 15 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 03c23c519400..d651faa31716 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = nautilus-hide
pkgdesc = A simple Nautilus extension that adds "Hide" and "Unhide" to Nautilus right-click menu
- pkgver = 0.2.0
+ pkgver = 0.2.1
pkgrel = 1
url = https://gitlab.gnome.org/madmurphy/nautilus-hide
install = nautilus-hide.install
@@ -12,8 +12,8 @@ pkgbase = nautilus-hide
depends = libnautilus-extension
conflicts = nautilus-hide-git
conflicts = nautilus-hide-bin
- source = https://gitlab.gnome.org/madmurphy/nautilus-hide/-/archive/0.2.0/nautilus-hide-0.2.0.tar.gz
- sha256sums = 2654b0e9942f2eaf285c76195806ccfae5ef847bcb699aa8c56baa956a67c54e
+ source = https://github.com/madmurphy/nautilus-hide/releases/download/0.2.1/nautilus-hide-0.2.1-with-configure.tar.gz
+ sha256sums = a76fe7353d5255441c7de25c1d67056baf251cc6f21ced6b0c873c49a83dd698
pkgname = nautilus-hide
diff --git a/PKGBUILD b/PKGBUILD
index 3155731dcffe..f5cb46dd2235 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: grufo <madmurphy333 AT gmail DOT com>
pkgname='nautilus-hide'
-pkgver='0.2.0'
+pkgver='0.2.1'
pkgrel=1
pkgdesc='A simple Nautilus extension that adds "Hide" and "Unhide" to Nautilus right-click menu'
arch=('i686' 'x86_64')
@@ -10,20 +10,13 @@ license=('GPL')
depends=('glib2' 'libnautilus-extension')
makedepends=('intltool')
conflicts=("${pkgname}-git" "${pkgname}-bin")
-source=("https://gitlab.gnome.org/madmurphy/${pkgname}/-/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+source=("https://github.com/madmurphy/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}-with-configure.tar.gz")
install="${pkgname}.install"
-sha256sums=('2654b0e9942f2eaf285c76195806ccfae5ef847bcb699aa8c56baa956a67c54e')
-
-prepare() {
-
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./bootstrap --noconfigure
-
-}
+sha256sums=('a76fe7353d5255441c7de25c1d67056baf251cc6f21ced6b0c873c49a83dd698')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd "${srcdir}/${pkgname}-${pkgver}-with-configure"
./configure --prefix=/usr
make
@@ -31,8 +24,9 @@ build() {
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd "${srcdir}/${pkgname}-${pkgver}-with-configure"
make DESTDIR="${pkgdir}" install
}
+