mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
28 lines
639 B
Bash
28 lines
639 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=exif
|
|
pkgver=0.6.21
|
|
pkgrel=1
|
|
pkgdesc="A small command-line utility to show EXIF information hidden in JPEG files."
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
url="http://sourceforge.net/projects/libexif"
|
|
depends=('libexif' 'popt')
|
|
source=("http://downloads.sf.net/sourceforge/libexif/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('0e744471b8c3b3b1534d5af38bbf6408')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|