summaryrefslogtreecommitdiff
path: root/packaging/harfbuzz.spec
diff options
context:
space:
mode:
authorMike McCormack <mj.mccormack@samsung.com>2011-09-29 16:03:17 +0900
committerMike McCormack <mj.mccormack@samsung.com>2011-09-29 16:03:17 +0900
commit59741d7488d0a660b6d737beae8f6d460736996c (patch)
treebd4f03f0ceded6199940329319233bc790795357 /packaging/harfbuzz.spec
parentcb9b630bd548da7b294671d1b0c7c76d0983169f (diff)
downloadvideo-player-59741d7488d0a660b6d737beae8f6d460736996c.tar.gz
video-player-59741d7488d0a660b6d737beae8f6d460736996c.tar.bz2
video-player-59741d7488d0a660b6d737beae8f6d460736996c.zip
rpm: Add spec file
Diffstat (limited to 'packaging/harfbuzz.spec')
-rw-r--r--packaging/harfbuzz.spec51
1 files changed, 51 insertions, 0 deletions
diff --git a/packaging/harfbuzz.spec b/packaging/harfbuzz.spec
new file mode 100644
index 0000000..be345c4
--- /dev/null
+++ b/packaging/harfbuzz.spec
@@ -0,0 +1,51 @@
+Name: harfbuzz
+Summary: TO BE FILLED IN
+Version: 0.7.0
+Release: 1
+Group: TO_BE/FILLED_IN
+License: TO BE FILLED IN
+Source0: harfbuzz-%{version}.tar.gz
+BuildRequires: pkgconfig(freetype2)
+BuildRequires: which
+BuildRequires: ragel
+
+
+%description
+
+
+%package devel
+Summary: Development files for %{name}
+Group: Development/Libraries
+Requires: %{name} = %{version}-%{release}
+%description devel
+Development files for %{name}
+
+
+
+%prep
+%setup -q
+
+
+%build
+%autogen
+%configure
+
+make %{?jobs:-j%jobs}
+
+%install
+rm -rf %{buildroot}
+%make_install
+
+
+
+%files
+%defattr(-,root,root,-)
+%{_libdir}/lib*.so.*
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/*
+%{_libdir}/lib*.so
+%{_libdir}/pkgconfig/*
+
+