mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 13:57:15 +08:00
30 lines
650 B
Bash
30 lines
650 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
|
|
pkgname=libexif
|
|
pkgver=0.6.21
|
|
pkgrel=1
|
|
pkgdesc="A library to parse an EXIF file and read the data from those tags"
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
url="http://sourceforge.net/projects/libexif"
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
source=("http://downloads.sf.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('27339b89850f28c8f1c237f233e05b27')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|