first commit
This commit is contained in:
3
src/util-macros/.gitignore
vendored
Normal file
3
src/util-macros/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/util-macros/changes.md
Normal file
2
src/util-macros/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1.20.0
|
||||
First version
|
17
src/util-macros/pkg.sh
Normal file
17
src/util-macros/pkg.sh
Normal file
@ -0,0 +1,17 @@
|
||||
NAME="util-macros"
|
||||
DESC="m4 macros used by all of the Xorg packages"
|
||||
VERSION="1.20.0"
|
||||
FILES=("https://www.x.org/pub/individual/util/util-macros-$VERSION.tar.xz")
|
||||
HASHES=("50135407d81e2c97c2879a2ba3bac688")
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME-$VERSION.tar.xz
|
||||
cd $NAME-$VERSION
|
||||
|
||||
./configure -prefix=/usr --sysconfdir=/etc \
|
||||
--localstatedir=/var --disable-static
|
||||
make DESTDIR=$ROOTDIR install
|
||||
|
||||
cd .. && rm -rf $NAME-$VERSION
|
||||
}
|
Reference in New Issue
Block a user