diff options
| author | zorz <zorz@krypt.sh> | 2026-04-01 22:52:53 +0300 |
|---|---|---|
| committer | zorz <zorz@krypt.sh> | 2026-04-01 22:52:53 +0300 |
| commit | 510ee94dc6c7b011ba95816e50d4faa8352f5e71 (patch) | |
| tree | bdebaf589f9aae422a653a29b529008513f072c3 /libxpm | |
| parent | e304d10a0993bda38d3bda2c0a9f33443ba82212 (diff) | |
| download | xorg-main.tar.gz xorg-main.tar.xz | |
Diffstat (limited to 'libxpm')
| -rw-r--r-- | libxpm/MAKEPKG | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/libxpm/MAKEPKG b/libxpm/MAKEPKG new file mode 100644 index 0000000..07710ce --- /dev/null +++ b/libxpm/MAKEPKG | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | #!/bin/mkpkg | ||
| 2 | # description: X Pixmap library | ||
| 3 | # url: https://xorg.freedesktop.org | ||
| 4 | |||
| 5 | name=libxpm | ||
| 6 | version=3.5.18 | ||
| 7 | release=1 | ||
| 8 | depends=(libxext libxt) | ||
| 9 | source=(https://www.x.org/releases/individual/lib/libXpm-$version.tar.xz) | ||
| 10 | |||
| 11 | sha256sums=( | ||
| 12 | "b4ed79bfc718000edee837d551c35286f0b84576db0ce07bbbebe60a4affa1e4" | ||
| 13 | ) | ||
| 14 | |||
| 15 | build() { | ||
| 16 | cd libXpm-$version | ||
| 17 | |||
| 18 | ./configure \ | ||
| 19 | --prefix=/usr \ | ||
| 20 | --disable-open-zfile | ||
| 21 | |||
| 22 | make | ||
| 23 | make DESTDIR=$PKG install | ||
| 24 | } | ||
| 25 | |||
| 26 | signify() { | ||
| 27 | untrusted comment: public key | ||
| 28 | RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 | ||
| 29 | } | ||
| 30 | |||
| 31 | # vim: filetype=sh | ||