para quem quiser instalar
não encontrei nem no aur e nem no repo
# github: https://github.com/brunonova/nautilus-hide
- Código: Selecionar todos
# Maintainer: Stefano Capitani <[email protected]>
# Maintainer: Bruno Nova <[email protected]>
# Modified: swatquest
# github: https://github.com/brunonova/nautilus-hide
pkgname=nautilus-hide
pkgver=0.2.3
pkgrel=1
pkgdesc="Extension for the Nautilus file manager that adds options to the right-click menu to hide or unhide files."
arch=('any')
url="https://github.com/brunonova/$pkgname"
license=('GPL3')
depends=('nautilus' 'python-nautilus')
makedepends=('cmake>=2.6' 'gettext' 'xdotool')
source=("https://github.com/brunonova/$pkgname/releases/download/v$pkgver/${pkgname}_$pkgver.tar.xz")
md5sums=('3b19fe0db822bd2353aaf1fbe4592d2b')
build() {
cd "$srcdir"
cmake . -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "$srcdir"
make DESTDIR="$pkgdir" install
install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
install -Dm644 "NEWS" "$pkgdir/usr/share/doc/$pkgname/NEWS"
install -Dm644 "AUTHORS" "$pkgdir/usr/share/doc/$pkgname/AUTHORS"
}