]> git.pld-linux.org Git - packages/libseccomp.git/commitdiff
- new auto/th/libseccomp-1.0.0-1
authorJakub Bogusz <qboosh@pld-linux.org>
Sat, 27 Oct 2012 19:43:00 +0000 (21:43 +0200)
committerJakub Bogusz <qboosh@pld-linux.org>
Sat, 27 Oct 2012 19:43:00 +0000 (21:43 +0200)
- pc patch to install proper file as libseccomp.pc, not bash

libseccomp-pc.patch [new file with mode: 0644]
libseccomp.spec [new file with mode: 0644]

diff --git a/libseccomp-pc.patch b/libseccomp-pc.patch
new file mode 100644 (file)
index 0000000..a287e31
--- /dev/null
@@ -0,0 +1,12 @@
+--- libseccomp-1.0.0/Makefile.orig     2012-07-28 00:39:00.000000000 +0200
++++ libseccomp-1.0.0/Makefile  2012-10-27 21:21:08.860539706 +0200
+@@ -85,7 +85,8 @@
+ install: $(SUBDIRS_BUILD)
+       @$(ECHO) ">> INFO: installing in $(INSTALL_PREFIX) ..."
+-      $(INSTALL_PC_MACRO) libseccomp.pc
++      $(INSTALL) -d $(INSTALL_LIB_DIR)/pkgconfig
++      $(INSTALL) libseccomp.pc $(INSTALL_LIB_DIR)/pkgconfig
+       @for dir in $(SUBDIRS_INSTALL); do \
+               $(ECHO) ">> INFO: installing from $$dir/"; \
+               $(MAKE) -C $$dir install; \
diff --git a/libseccomp.spec b/libseccomp.spec
new file mode 100644 (file)
index 0000000..a0508a8
--- /dev/null
@@ -0,0 +1,99 @@
+Summary:       Enhanced Seccomp (mode 2) Helper library
+Summary(pl.UTF-8):     Rozszerzona biblioteka pomocnicza Seccomp (trybu 2)
+Name:          libseccomp
+Version:       1.0.0
+Release:       1
+License:       LGPL v2.1
+Group:         Libraries
+Source0:       http://downloads.sourceforge.net/libseccomp/%{name}-%{version}.tar.gz
+# Source0-md5: e9796bce21fab55fd661be4ee618211d
+Patch0:                %{name}-pc.patch
+URL:           http://libseccomp.sourceforge.net/
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The libseccomp library provides and easy to use, platform independent,
+interface to the Linux Kernel's syscall filtering mechanism: seccomp.
+The libseccomp API is designed to abstract away the underlying BPF
+based syscall filter language and present a more conventional
+function-call based filtering interface that should be familiar to,
+and easily adopted by application developers.
+
+%description -l pl.UTF-8
+Biblioteka libseccomp udostępnia łatwy w użyciu, niezależny od
+platformy interfejs do mechanizmu filtrowania wywołań systemowych
+jądra Linuksa - seccomp. API libseccomp jest zaprojektowane tak,
+żeby wyabstrahować język filtrowania wywołań BPF niższego poziomu i
+zaprezentować bardziej konwencjonalny interfejs filtrowania w oparciu
+o wywołania funkcji, który powinien być bardziej przyjazny i łatwiej
+adaptowalny dla programistów aplikacji.
+
+%package devel
+Summary:       Header files for Seccomp library
+Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki Seccomp
+Group:         Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+
+%description devel
+Header files for Seccomp library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki Seccomp.
+
+%package static
+Summary:       Static Seccomp library
+Summary(pl.UTF-8):     Statyczna biblioteka Seccomp
+Group:         Development/Libraries
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+Static Seccomp library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka Seccomp.
+
+%prep
+%setup -q
+%patch0 -p1
+
+%build
+# not autoconf configure
+./configure \
+       --prefix=%{_prefix} \
+       --libdir=%{_libdir}
+
+GCC="%{__cc}" \
+CFLAGS="%{rpmcflags} -Wall" \
+%{__make} \
+       V=1
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+install src/libseccomp.a $RPM_BUILD_ROOT%{_libdir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun        -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc CHANGELOG CREDITS README
+%attr(755,root,root) %{_libdir}/libseccomp.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libseccomp.so.1
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libseccomp.so
+%{_includedir}/seccomp.h
+%{_pkgconfigdir}/libseccomp.pc
+%{_mandir}/man3/seccomp_*.3*
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libseccomp.a
This page took 0.117417 seconds and 4 git commands to generate.