Skip to content

Commit

Permalink
svox: Make version apk compatible
Browse files Browse the repository at this point in the history
Adjust PKG_VERSION to be compatible with apk's semantic rules.

Signed-off-by: Hannu Nyman <[email protected]>
  • Loading branch information
hnyman committed Nov 17, 2024
1 parent c8a46db commit 75ca29f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions sound/svox/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=svox
PKG_VERSION:=1.0+git20130326
PKG_REAL_VERSION:=1.0+git20130326
PKG_VERSION:=$(subst +git,.,$(PKG_REAL_VERSION))
PKG_RELEASE:=3

PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
PKG_SOURCE:=$(PKG_NAME)_$(PKG_REAL_VERSION).orig.tar.gz
PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/non-free/s/svox
PKG_HASH:=337b25e6ccb3764f0df1e176470b883c90e40e98840d4133340fcc89eb3cea0c

PKG_BUILD_DIR :=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_REAL_VERSION)

PKG_MAINTAINER:=Alessandro Di Marco <[email protected]>
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=
Expand Down

0 comments on commit 75ca29f

Please sign in to comment.