You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
777 B
Bash
29 lines
777 B
Bash
10 years ago
|
# Maintainer: Lit Wakefield <nocturnalartifice[at]gmail[dot]com>
|
||
|
|
||
|
_pkgname=tdrop
|
||
|
pkgname=tdrop-git
|
||
|
pkgver=
|
||
|
pkgrel=1
|
||
|
pkgdesc="A WM-Independent dropdown window and terminal creator"
|
||
|
arch=('any')
|
||
|
url="https://github.com/angelic-sedition/tdrop"
|
||
|
license=('Simplified BSD')
|
||
|
depends=('bash' 'xdotool' 'xorg-xwininfo' 'xorg-xprop')
|
||
|
optdepends=('tmux: session starting support'
|
||
|
'tmuxinator: session starting support'
|
||
|
'sxhkd: for a tdrop keybinding')
|
||
|
makedepends=('git')
|
||
|
provides=("${_pkgname}")
|
||
|
md5sums=('SKIP')
|
||
|
source=("git://github.com/angelic-sedition/${_pkgname}.git")
|
||
|
|
||
|
pkgver() {
|
||
|
cd "$srcdir/$_pkgname"
|
||
|
git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/$_pkgname"
|
||
|
make PREFIX=/usr DESTDIR="$pkgdir" install
|
||
|
}
|