diff --git a/README.md b/README.md deleted file mode 100644 index 7342728d557c602f51c6d278bba9f3dd9faaf356..0000000000000000000000000000000000000000 --- a/README.md +++ /dev/null @@ -1,11 +0,0 @@ -Anolis OS -======================================= -# 代码仓库说明 -## 分支说明 ->进行代码开发工作时,请注意选择当前版本对应的分支 -* aX分支为对应大版本的主分支,如a8分支对应当前最新版本 -* aX.Y分支为对应小版本的维护分支,如a8.2分支对应8.2版本 -## 开发流程 -1. 首先fork目标分支到自己的namespace -2. 在自己的fork分支上做出修改 -3. 向对应的仓库中提交merge request,源分支为fork分支 diff --git a/v0.13.72.tar.gz b/v0.13.72.tar.gz deleted file mode 100644 index 684bcb8dcbd8cb78d3280e2e6856e39a0c4845a6..0000000000000000000000000000000000000000 Binary files a/v0.13.72.tar.gz and /dev/null differ diff --git a/v0.13.78.tar.gz b/v0.13.78.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..1a6a2d5abebea1885c0c94fe73f4334771770e38 Binary files /dev/null and b/v0.13.78.tar.gz differ diff --git a/zziplib.spec b/zziplib.spec index e6c945d0480397106eb58f7535881dd61f4719c0..e33abdcaa8682687f52c3351b8c35a6489c47c93 100644 --- a/zziplib.spec +++ b/zziplib.spec @@ -1,6 +1,7 @@ -%define anolis_release 2 +%define anolis_release 1 + Name: zziplib -Version: 0.13.72 +Version: 0.13.78 Release: %{anolis_release}%{?dist} Summary: Lightweight library to easily extract data from zip files License: LGPLv2+ or MPLv1.1 @@ -9,6 +10,8 @@ Source: https://github.com/gdraheim/zziplib/archive/v%{version}.tar.gz BuildRequires: make gcc cmake perl-interpreter python3-rpm-macros BuildRequires: zip xmlto zlib-devel +BuildRequires: SDL-devel +BuildRequires: pkgconfig %description The %{name} library is intentionally lightweight, it offers the ability to @@ -33,6 +36,9 @@ This packages contains all the utilities that come with the %{name} library. %package devel Summary: Development files for the %{name} library Requires: %{name} = %{version}-%{release} +Requires: pkgconfig +Requires: zlib-devel +Requires: SDL-devel %description devel The %{name} library is intentionally lightweight, it offers the ability to @@ -56,15 +62,20 @@ Documentation files for %{name}. %autosetup -p1 %build -%cmake -%cmake_build +%cmake -B "%{_vpath_builddir}" + +%make_build -C "%{_vpath_builddir}" %install -%cmake_install +%make_install -C "%{_vpath_builddir}" + +%ldconfig_scriptlets %files %license docs/COPYING* %{_libdir}/*.so.* +%exclude %{_datadir}/zziplib/*.cmake +%exclude %{_libdir}/cmake/zziplib/*.cmake %files utils %{_bindir}/* @@ -81,6 +92,10 @@ Documentation files for %{name}. %doc README TODO ChangeLog %changelog +* Fri Feb 28 2025 Chang Gao - 0.13.78-1 +- Update to 0.13.78 +- Update build params + * Wed Apr 12 2023 Shawn Wang - 0.13.72-2 - Optimize the spec file