diff options
author | Kibum Kim <kb0929.kim@samsung.com> | 2012-01-07 00:42:44 +0900 |
---|---|---|
committer | Kibum Kim <kb0929.kim@samsung.com> | 2012-01-07 00:42:44 +0900 |
commit | e6ef61572c48a551b22b95d50c4ed427087cbdc7 (patch) | |
tree | 881c34dac42aff22035de1ffbf5eba60dac1edcd /packaging | |
parent | 6fefcfb3259ce0088331bcb92224dfecd29fe898 (diff) | |
download | media-content-e6ef61572c48a551b22b95d50c4ed427087cbdc7.tar.gz media-content-e6ef61572c48a551b22b95d50c4ed427087cbdc7.tar.bz2 media-content-e6ef61572c48a551b22b95d50c4ed427087cbdc7.zip |
Git init
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/capi-content-media-content.spec | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/packaging/capi-content-media-content.spec b/packaging/capi-content-media-content.spec new file mode 100644 index 0000000..9143ecd --- /dev/null +++ b/packaging/capi-content-media-content.spec @@ -0,0 +1,53 @@ +Name: capi-content-media-content +Summary: A Media content library in SLP C API +Version: 0.0.1 +Release: 1 +Group: TO_BE/FILLED_IN +License: TO BE FILLED IN +Source0: %{name}-%{version}.tar.gz +BuildRequires: cmake +BuildRequires: pkgconfig(dlog) +BuildRequires: pkgconfig(libmedia-service) +BuildRequires: pkgconfig(drm-service) +BuildRequires: pkgconfig(aul) +BuildRequires: pkgconfig(capi-base-common) +Requires(post): /sbin/ldconfig +Requires(postun): /sbin/ldconfig + +%description + + +%package devel +Summary: A Media content library in Tizen Native API (Development) +Group: TO_BE/FILLED_IN +Requires: %{name} = %{version}-%{release} + +%description devel + +%prep +%setup -q + + +%build +cmake . -DCMAKE_INSTALL_PREFIX=/usr + + +make %{?jobs:-j%jobs} + +%install +rm -rf %{buildroot} +%make_install + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%{_libdir}/libcapi-content-media-content.so + +%files devel +%{_includedir}/media-content/*.h +%{_libdir}/pkgconfig/*.pc + + |