mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
libraries/exiftool: Added to 12.0 repository
This commit is contained in:
parent
8c25022543
commit
7963427b73
4 changed files with 88 additions and 0 deletions
7
libraries/exiftool/README
Normal file
7
libraries/exiftool/README
Normal file
|
@ -0,0 +1,7 @@
|
|||
ExifTool is a platform-independent Perl library (Image::ExifTool) plus a
|
||||
command-line application (exiftool) for reading, writing, and editing
|
||||
meta information in image, audio, and video files.
|
||||
|
||||
ExifTool supports many different types of metadata including EXIF, GPS,
|
||||
IPTC, XMP, JFIF, GeoTIFF, ICC Profile, Photoshop IRB, FlashPix, AFCP,
|
||||
and ID3, as well as the maker notes of many digital cameras.
|
54
libraries/exiftool/exiftool.SlackBuild
Normal file
54
libraries/exiftool/exiftool.SlackBuild
Normal file
|
@ -0,0 +1,54 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Exiftool
|
||||
# Written by David Spencer <nobbutl@yahoo.co.uk>
|
||||
# This script is dedicated to the public domain
|
||||
|
||||
PRGNAM=exiftool
|
||||
VERSION=7.12
|
||||
ARCH=${ARCH:-noarch}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf Image-ExifTool-$VERSION
|
||||
tar xvf $CWD/Image-ExifTool-$VERSION.tar.gz
|
||||
cd Image-ExifTool-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
perl Makefile.PL
|
||||
make test
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
mv $PKG/usr/share/man $PKG/usr/man
|
||||
rmdir $PKG/usr/share
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
)
|
||||
|
||||
( cd $PKG
|
||||
find . -name perllocal.pod \
|
||||
-o -name ".packlist" \
|
||||
-o -name "*.bs" \
|
||||
| xargs rm -f
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a Changes README html/ $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
libraries/exiftool/exiftool.info
Normal file
8
libraries/exiftool/exiftool.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="exiftool"
|
||||
VERSION="7.12"
|
||||
HOMEPAGE="http://www.sno.phy.queensu.ca/~phil/exiftool/"
|
||||
DOWNLOAD="http://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-7.12.tar.gz"
|
||||
MD5SUM="897932155b741597940941b0b93056ff"
|
||||
MAINTAINER="David Spencer"
|
||||
EMAIL="nobbutl@yahoo.co.uk"
|
||||
APPROVED="rworkman"
|
19
libraries/exiftool/slack-desc
Normal file
19
libraries/exiftool/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||
# up the first '|' above the ':' following the base package name, and the '|'
|
||||
# on the right side marks the last column you can put a character in. You must
|
||||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
exiftool: exiftool (read, write, and edit EXIF and other meta information)
|
||||
exiftool:
|
||||
exiftool: ExifTool is a platform-independent Perl library (Image::ExifTool)
|
||||
exiftool: plus a command-line application (exiftool) for reading, writing,
|
||||
exiftool: and editing meta information in image, audio, and video files.
|
||||
exiftool: ExifTool supports many different types of metadata including EXIF,
|
||||
exiftool: GPS, IPTC, XMP, JFIF, GeoTIFF, ICC Profile, Photoshop IRB, AFCP,
|
||||
exiftool: FlashPix, AFCP, and ID3, and maker notes of many digital cameras.
|
||||
exiftool:
|
||||
exiftool: Homepage: http://www.sno.phy.queensu.ca/~phil/exiftool/
|
||||
exiftool:
|
Loading…
Reference in a new issue