mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:57:17 +08:00
28 lines
754 B
Bash
28 lines
754 B
Bash
# Maintainer: Drake Justice <djustice@chakraos.org>
|
|
|
|
pkgname=xorg-appres
|
|
pkgver=1.0.4
|
|
pkgrel=1
|
|
pkgdesc="List X application resource database"
|
|
arch=('x86_64')
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=('libxt')
|
|
makedepends=('xorg-util-macros')
|
|
conflicts=('xorg-res-utils')
|
|
source=("http://xorg.freedesktop.org/archive/individual/app/appres-${pkgver}.tar.bz2")
|
|
sha256sums=('9f614e9427cd9641a4a801ed5055700afa410674c0b7aa186b86078f11b83e8d')
|
|
|
|
build() {
|
|
cd "${srcdir}/appres-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/appres-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
}
|