diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-11-07 13:48:18 -0800 |
---|---|---|
committer | Sabera Djelti (sdi2) <sabera.djelti@open.eurogiciel.org> | 2014-11-10 15:07:46 +0100 |
commit | fe761843ecd474fce30892f84fbe729a3ebb2069 (patch) | |
tree | fb5df7eb38b4ab26a8560dade6b5f431faf9d67e | |
parent | d2521ee04e00e1c060001d5d67c1cf0bd23ec260 (diff) | |
download | libtasn1-fe761843ecd474fce30892f84fbe729a3ebb2069.tar.gz libtasn1-fe761843ecd474fce30892f84fbe729a3ebb2069.tar.bz2 libtasn1-fe761843ecd474fce30892f84fbe729a3ebb2069.zip |
add packaging
-rw-r--r-- | packaging/baselibs.conf | 1 | ||||
-rw-r--r-- | packaging/libtasn1.spec | 58 |
2 files changed, 59 insertions, 0 deletions
diff --git a/packaging/baselibs.conf b/packaging/baselibs.conf new file mode 100644 index 0000000..7f5b6a6 --- /dev/null +++ b/packaging/baselibs.conf @@ -0,0 +1 @@ +libtasn1-3 diff --git a/packaging/libtasn1.spec b/packaging/libtasn1.spec new file mode 100644 index 0000000..6ad7fe8 --- /dev/null +++ b/packaging/libtasn1.spec @@ -0,0 +1,58 @@ +Name: libtasn1 +Version: 2.12 +Release: 0 +License: LGPL-2.1+ and GPL-3.0 +Summary: ASN +Url: http://ftp.gnu.org/gnu/libtasn1/ +Group: Productivity/Networking/Security +Source: %{name}-%{version}.tar.bz2 +Source99: baselibs.conf +BuildRequires: info +BuildRequires: pkg-config +BuildRoot: %{_tmppath}/%{name}-%{version}-build + +%description +This is the ASN.1 library used in GNUTLS. More up to date information +can be found at http://www.gnu.org/software/gnutls and +http://www.gnutls.org + +%package devel +Summary: ASN +Group: Productivity/Networking/Security +Requires: %{name} = %{version} + +%description devel +This is the ASN.1 library used in GNUTLS. More up to date information +can be found at http://www.gnu.org/software/gnutls and +http://www.gnutls.org + +%prep +%setup -q + +%build +%configure --disable-static +make %{?_smp_mflags} + +%install +%make_install + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%docs_package + +%files +%defattr(-, root, root) +%{_bindir}/* +%{_libdir}/*.so.* + +%files devel +%defattr(-, root, root) +%{_includedir}/*.h +%{_libdir}/*.so +%{_libdir}/pkgconfig/libtasn1.pc + +%changelog |