blob: 5ce9e23e49985964d177a4d26a68b951288924e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
pkgname=yaknewtab
commit_hash=52192368063cbc676c15006c539367c7375704aa
pkgver=${commit_hash}
pkgrel=3
pkgdesc='A shell script for opening new Yakuake tabs/sessions'
arch=(any)
url='https://github.com/RogueScholar/yaknewtab'
license=(GPL-3.0)
depends=(
'bash'
)
makedepends=(
'coreutils'
)
source=(https://github.com/RogueScholar/yaknewtab/archive/${pkgver}.tar.gz)
sha256sums=('298431e08bd9179c082fd7b9b2d81cae41e57f6b6b07fee62a9b6f0b54afcc9d')
provides=(yaknewtab)
package() {
cd "yaknewtab-${pkgver}"
install -Dp --mode=755 --owner=root --group=root yaknewtab "${pkgdir}/usr/local/bin/yaknewtab"
}
|