blob: 4cb3646fa925e436a5eec9dbe8030e6626c2a346 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
MAKEDEPS=(make )
DEPS=(glibc)
PKG_VER=1.1.6
SOURCE=https://bitmath.org/code/mtdev/mtdev-$PKG_VER.tar.bz2
DESC="A stand-alone library which transforms all variants of kernel MT events to the slotted type B protocol"
build () {
./configure --prefix=/usr --disable-static &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|