45 lines
1 KiB
Bash
45 lines
1 KiB
Bash
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
|
|
# Contributor: Felix Bühler <account at buehler dot de>
|
|
# Contributor: lvxnull <lvxnull at proton dot me>
|
|
|
|
pkgname=nautilus-open-any-terminal
|
|
pkgver=0.7.0
|
|
pkgrel=1
|
|
pkgdesc="context-menu entry for opening other terminal in nautilus"
|
|
arch=(any)
|
|
url="https://github.com/Stunkymonkey/nautilus-open-any-terminal"
|
|
license=(
|
|
GPL-3.0-or-later
|
|
)
|
|
depends=(
|
|
dconf
|
|
glib2
|
|
gtk4
|
|
libnautilus-extension
|
|
python
|
|
python-gobject
|
|
python-nautilus
|
|
)
|
|
makedepends=(
|
|
gettext
|
|
git
|
|
make
|
|
)
|
|
source=("$pkgname-$pkgver::git+$url.git#tag=$pkgver")
|
|
b2sums=('7d43be4320832c802d0095c3dbc55b47ce56a47156d5004ce978336a12b0d74b6b7affeb17d130b0167353b06c9d99c9de612c3c10dae67254e4a3251c8cd273')
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
make build
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make PREFIX="${pkgdir}/usr" install-nautilus
|
|
|
|
install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname" \
|
|
README.md \
|
|
screenshot.png
|
|
}
|
|
|
|
# vim: set ft=sh ts=4 sw=4 et:
|