mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
26 lines
717 B
Bash
26 lines
717 B
Bash
# Maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
|
|
# Contributor: Daniele Cocca <jmc@chakra-project.org>
|
|
|
|
pkgname=mxml
|
|
pkgver=2.8
|
|
pkgrel=1
|
|
pkgdesc="Mini-XML is a small XML parsing library: read/write XML and XML-like data files in your application without requiring large non-standard libraries."
|
|
arch=('x86_64')
|
|
url="http://www.minixml.org/"
|
|
license=('LGPL')
|
|
source=("http://www.msweet.org/files/project3/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('d85ee6d30de053581242c4a86e79a5d2')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-shared
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DSTROOT="${pkgdir}" install
|
|
chmod -x "$pkgdir/usr/lib/libmxml.a"
|
|
|
|
}
|