summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2010-01-02 15:32:31 +0100
committerHans Ulrich Niedermann <hun@n-dimensional.de>2010-01-02 15:32:31 +0100
commit90571a27f3de6e608e26cc63c7d7ffd356056404 (patch)
tree222d6a61e46924872737fa4be01cefe5450b6e7e
downloadmingw32-libexif-package-90571a27f3de6e608e26cc63c7d7ffd356056404.tar.gz
mingw32-libexif-package-90571a27f3de6e608e26cc63c7d7ffd356056404.tar.xz
mingw32-libexif-package-90571a27f3de6e608e26cc63c7d7ffd356056404.zip
Initial commit
-rw-r--r--.gitignore1
-rw-r--r--.gitmodules3
l---------GNUmakefile1
m---------git-rpm0
-rw-r--r--mingw32-libexif.spec66
5 files changed, 71 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7faec30
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/libexif-0.*.tar.bz2
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..0ccfef1
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "git-rpm"]
+ path = git-rpm
+ url = git://fedorapeople.org/~ndim/git-rpm.git
diff --git a/GNUmakefile b/GNUmakefile
new file mode 120000
index 0000000..9acf7e6
--- /dev/null
+++ b/GNUmakefile
@@ -0,0 +1 @@
+git-rpm/GNUmakefile \ No newline at end of file
diff --git a/git-rpm b/git-rpm
new file mode 160000
+Subproject b8d10c0dba38aa47d008e09d82b055b9d848783
diff --git a/mingw32-libexif.spec b/mingw32-libexif.spec
new file mode 100644
index 0000000..5335ef1
--- /dev/null
+++ b/mingw32-libexif.spec
@@ -0,0 +1,66 @@
+%define __strip %{_mingw32_strip}
+%define __objdump %{_mingw32_objdump}
+%define _use_internal_dependency_generator 0
+%define __find_requires %{_mingw32_findrequires}
+%define __find_provides %{_mingw32_findprovides}
+
+
+# The number N in libexif-N.dll
+%global libexif_major 12
+
+
+Name: mingw32-libexif
+Version: 0.6.19
+Release: 1%{?dist}
+Summary: Library for extracting extra information from image files
+
+Group: System Environment/Libraries
+License: LGPLv2+
+URL: http://libexif.sourceforge.net/
+Source0: http://prdownloads.sourceforge.net/libexif/libexif-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildRequires: mingw32-binutils
+BuildRequires: mingw32-gcc
+
+BuildArch: noarch
+
+
+%description
+Most digital cameras produce EXIF files, which are JPEG files with
+extra tags that contain information about the image. The EXIF library
+allows you to parse an EXIF file and read the data from those tags.
+
+
+%prep
+%setup -q
+
+
+%build
+%configure --disable-static --disable-docs
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install DESTDIR=$RPM_BUILD_ROOT
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%files
+%defattr(-,root,root,-)
+%doc COPYING README NEWS
+%{_mingw32_bindir}/libexif-%{libexif_major}.dll
+%{_mingw32_includedir}/libexif
+%{_mingw32_libdir}/libexif.dll.a
+%{_mingw32_libdir}/libexif.la
+%{_mingw32_libdir}/pkgconfig/libexif.pc
+
+
+%changelog
+* Sat Jan 2 2010 Hans Ulrich Niedermann <hun@n-dimensional.de> - 0.6.19-1
+- Initial mingw32-libexif package
+