-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nemo-terminal See merge request turkman/packages/main!133
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/usr/bin/env bash | ||
name='nemo-terminal' | ||
release='2' | ||
version='6.2.0' | ||
url='https://example.org' | ||
description='Embedded terminal window for Nemo' | ||
email='brkt8khn@gmail.com' | ||
maintainer='brkt8khn' | ||
license=('GPLv2') | ||
source=("https://github.com/linuxmint/nemo-extensions/archive/refs/tags/${version}.tar.gz") | ||
depends=(nemo) | ||
makedepends=(intltool gobject-introspection meson ninja) | ||
sha256sums=('b1c7e3d269ed05f472c80c16cf3f12827cbb48cb05406b276be14060225dbbc3') | ||
group=(cinnamon.extra) | ||
uses=() | ||
arch=('x86_64') | ||
|
||
cd "nemo-extensions"-$version/"nemo-terminal" | ||
|
||
build(){ | ||
python3 setup.py build | ||
} | ||
|
||
package(){ | ||
python3 setup.py install --root="${DESTDIR}" --install-lib=/usr/lib64/python3 --optimize=1 --skip-build | ||
} |