blob: 6470604cba18ba27b2958833ebeee4878e148226 (
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
27
28
29
|
# Maintainer: Karel Koči <cynerd@email.cz>
pkgname=ttysterm
pkgver=20171215
pkgrel=1
pkgdesc="Simple serial terminal"
arch=('i686' 'x86_64')
url="https://rtime.felk.cvut.cz/gitweb/sojka/sterm.git"
license=('GPL3')
depends=('lockdev')
makedepends=('git')
#changelog="debian/changelog"
source=("$pkgname::git://rtime.felk.cvut.cz/sojka/sterm.git")
md5sums=('SKIP')
prepare() {
cd "$pkgname"
# Reset to specified version
git reset --hard $pkgver
}
build() {
cd "$pkgname"
make
}
package() {
cd "$pkgname"
make DESTDIR="$pkgdir/" PREFIX="/usr" install
}
|