Skip to content

Commit

Permalink
beta-1
Browse files Browse the repository at this point in the history
  • Loading branch information
stsp committed Sep 8, 2018
1 parent a00645d commit 5808c58
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
fdpp (0.1~beta-1) bionic; urgency=low

* beta-1

-- Stas Sergeev <stsp@users.sourceforge.net> Sat, 8 Sep 2018 18:00:00 +0300

fdpp (0.1~alpha-3) artful; urgency=low

* alpha-3
Expand Down
2 changes: 1 addition & 1 deletion fdpp/fdpp.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

Name: fdpp
Version: 0.1
Version: 0.1beta1
Release: 1%{?dist}
Summary: DOS compatibility layer

Expand Down
16 changes: 9 additions & 7 deletions fdpp/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ LIBS=$(lib_path)/device.lib
HDR=$(srcdir)/../hdr/
SRC=$(srcdir)/../kernel/
FDPPLIB = libfdpp.so
PKG = fdpp-0.1.tar.gz
RELVER = beta1
PKG = fdpp-0.1$(RELVER)
TGZ = $(PKG).tar.gz

ALLCFLAGS += -I . -I $(SRC) -I $(srcdir) -DDATADIR=$(DATADIR) -DKRNL_NAME=$(TARGET).sys
NASMFLAGS += -i$(SRC)
Expand Down Expand Up @@ -203,14 +205,14 @@ install: $(FDPPLIB) fdpp.pc
install -D -t $(DESTDIR)$(PREFIX)/include/fdpp -m 0644 $(srcdir)/thunks.h
install -D -t $(DESTDIR)$(DATADIR) -m 0644 fdppkrnl.sys

$(PKG):
cd .. && git archive -o fdpp/fdpp-0.1.tar.gz --prefix=fdpp-0.1/ HEAD
.PHONY: $(PKG)
$(TGZ):
cd .. && git archive -o fdpp/$(TGZ) --prefix=$(PKG)/ HEAD
.PHONY: $(TGZ)

tar: $(PKG)
tar: $(TGZ)

rpm: $(PKG)
rpmbuild -tb $(PKG)
rpm: $(TGZ)
rpmbuild -tb $(TGZ)

deb:
debuild -i -us -uc -b
Expand Down

0 comments on commit 5808c58

Please sign in to comment.