diff options
| author | zorz <zorz@opentux.org> | 2026-02-27 17:37:23 +0200 |
|---|---|---|
| committer | zorz <zorz@opentux.org> | 2026-02-27 17:37:23 +0200 |
| commit | de196c8550dfd3317043fcc71de1506ac076e14f (patch) | |
| tree | 1e59293fa24652b1f7c96a95d522afd0590589bc /x11-xsetroot | |
| parent | 83404b410d422331951d406323962f314f9546ee (diff) | |
| download | xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.gz xorg-de196c8550dfd3317043fcc71de1506ac076e14f.tar.xz | |
Initial commit: xorg/x11 ports
Diffstat (limited to 'x11-xsetroot')
| -rw-r--r-- | x11-xsetroot/MAKEPKG | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11-xsetroot/MAKEPKG b/x11-xsetroot/MAKEPKG new file mode 100644 index 0000000..f50cd35 --- /dev/null +++ b/x11-xsetroot/MAKEPKG | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #!/bin/mkpkg | ||
| 2 | # *** OpenTUX *** | ||
| 3 | # description: Root window parameter setting utility for X | ||
| 4 | # url: https://xorg.freedesktop.org | ||
| 5 | |||
| 6 | name=x11-xsetroot | ||
| 7 | version=1.1.3 | ||
| 8 | release=1 | ||
| 9 | depends=(libxmu libxcursor x11-xbitmaps) | ||
| 10 | source=(https://www.x.org/releases/individual/app/xsetroot-$version.tar.xz) | ||
| 11 | |||
| 12 | build() { | ||
| 13 | cd xsetroot-$version | ||
| 14 | |||
| 15 | ./configure --prefix=/usr | ||
| 16 | make | ||
| 17 | make DESTDIR=$PKG install | ||
| 18 | } | ||
| 19 | |||
| 20 | # vim: filetype=sh | ||