blob: ad51ab4ebe4119effd1a64df64dcca69d3e072ec (
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
|
#!/bin/sh
NAME="xdg-utils"
DESC="Basic desktop integration functions"
MAKEDEPS="make docbook-dtd libxml2 libxslt xmlto lynx"
DEPS="file xprop xset "
PKG_VER=1.1.3
SOURCE="https://portland.freedesktop.org/download/xdg-utils-$PKG_VER.tar.gz"
ADDITIONAL="xdg-screensaver-mv-T.patch "
build () {
./configure \
--prefix=/usr
--bindir=/usr/bin \
--sysconfdir=/etc \
--disable-static
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|