summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d81164b52296c4e8582f41c50e1d80e1d58d4424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: RaphGL <raphfl.dev@gmail.com>
pkgname=neosent-git
pkgver=v1.2
pkgrel=1
epoch=1
pkgdesc="Suckful Sent - plaintext slide presentations"
arch=('any')
url="https://github.com/RaphGL/NeoSent"
license=('GPLv3')
makedepends=('make' 'git')
source=("git+$url")
md5sums=("SKIP")

build() {
    cd NeoSent
    git checkout $pkgver
    make
}

package() {
    cd NeoSent
    install -Dm0755 -t "$pkgdir/usr/bin/" "nsent"
}