From a47ac1274ccc400a68002a374750c23a916ff3b1 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Mon, 2 Sep 2024 00:49:44 +0200 Subject: [PATCH] package created using the webbuild interface [release 1.6.1-1mamba;Sun Sep 01 2024] --- README.md | 2 ++ shapelib.spec | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 shapelib.spec diff --git a/README.md b/README.md index 49176c3..e005f9a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # shapelib +C Library providing the ability to write simple C programs for reading, writing and updating ESRI Shapefiles. + diff --git a/shapelib.spec b/shapelib.spec new file mode 100644 index 0000000..b49a5fe --- /dev/null +++ b/shapelib.spec @@ -0,0 +1,99 @@ +Name: shapelib +Version: 1.6.1 +Release: 1mamba +Summary: C Library providing the ability to write simple C programs for reading, writing and updating ESRI Shapefiles +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://shapelib.maptools.org/ +Source: https://github.com/OSGeo/shapelib.git/v%{version}/shapelib-%{version}.tar.bz2 +License: MIT, LGPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +BuildRequires: cmake +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description +C Library providing the ability to write simple C programs for reading, writing and updating ESRI Shapefiles. + +%package -n lib%{name} +Group: System/Libraries +Summary: Shared libraries for %{name} + +%description -n lib%{name} +This package contains shared libraries for %{name}. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +## note: you can add this requirement if .pc files are provided by this package +#Requires: pkg-config + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + + +%debug_package + +%prep +%setup -q + +%build +%cmake \ + -DCMAKE_INSTALL_LIBDIR=%{_libdir} + +%cmake_build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%cmake_install + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_bindir}/Shape_PointInPoly +%{_bindir}/csv2shp +%{_bindir}/dbfadd +%{_bindir}/dbfcat +%{_bindir}/dbfcreate +%{_bindir}/dbfdump +%{_bindir}/dbfinfo +%{_bindir}/shpadd +%{_bindir}/shpcat +%{_bindir}/shpcentrd +%{_bindir}/shpcreate +%{_bindir}/shpdata +%{_bindir}/shpdump +%{_bindir}/shpdxf +%{_bindir}/shpfix +%{_bindir}/shpinfo +%{_bindir}/shprewind +%{_bindir}/shpsort +%{_bindir}/shptreedump +%{_bindir}/shpwkb + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libshp.so.* +%doc AUTHORS LICENSE-LGPL LICENSE-MIT + +%files -n lib%{name}-devel +%defattr(-,root,root) +%{_includedir}/shapefil.h +%{_libdir}/libshp.so +%{_libdir}/pkgconfig/shapelib.pc +%dir %{_datadir}/shapelib +%{_datadir}/shapelib/shapelib-*.cmake +%doc ChangeLog NEWS README README.CMake README.tree + + +%changelog +* Sun Sep 01 2024 Silvan Calarco 1.6.1-1mamba +- package created using the webbuild interface