first commit
This commit is contained in:
3
src/xtrans/.gitignore
vendored
Normal file
3
src/xtrans/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/xtrans/changes.md
Normal file
2
src/xtrans/changes.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# 1.5.0
|
||||
First version
|
17
src/xtrans/pkg.sh
Normal file
17
src/xtrans/pkg.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
NAME="xtrans"
|
||||
DESC="X transport interface"
|
||||
VERSION="1.5.0"
|
||||
FILES=("https://www.x.org/pub/individual/lib/xtrans-$VERSION.tar.xz")
|
||||
HASHES=("12344cd74a1eb25436ca6e6a2cf93097")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure --prefix=/usr --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static --docdir=/usr/share/doc/$NAME-$VERSION
|
||||
make && make DESTDIR=${ROOTDIR} install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user