summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a86e25feef624ff19b563082358b51a9c8b61475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pkgname=konsole-launcher
pkgver=1
pkgrel=1
pkgdesc='Opens new windows in Konsole as quickly as possible'
url='https://github.com/sandsmark/konsole-launcher'
arch=('x86_64' 'i686')
license=('GPL2')
makedepends=('gcc')
depends=('systemd-libs') # sd-bus
source=("https://github.com/sandsmark/konsole-launcher/archive/${pkgver}.tar.gz")

build() {
    cd konsole-launcher-${pkgver}
    # gnu make and/or gcc are broken
    LDFLAGS+=,--no-as-needed
    make
}

package() {
    cd konsole-launcher-${pkgver}
    make install DESTDIR="${pkgdir}"
}
md5sums=('8fc0e1c398ed7eb103e0eb69ec496eb4')