Commit ec603642 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

contribs: update documentation

parent 37b38d09
...@@ -19,9 +19,8 @@ is correct, e.g.: ...@@ -19,9 +19,8 @@ is correct, e.g.:
$(TARBALLS)/libfoo-$(FOO_VERSION).tar.bz2: $(TARBALLS)/libfoo-$(FOO_VERSION).tar.bz2:
$(WGET) $(FOO_URL) $(WGET) $(FOO_URL)
.sum-foo: $(TARBALLS)/libfoo-$(FOO_VERSION).tar.bz2 # This will use the default rule: check SHA-512
$(CHECKSUM) $(SRC)/foo/SHA512SUMS .sum-foo: libfoo-$(FOO_VERSION).tar.bz2
touch $@
NOTE: contrary to the previous VLC contribs, this system always uses NOTE: contrary to the previous VLC contribs, this system always uses
a source tarball, even if the source code is downloaded from a VCS. a source tarball, even if the source code is downloaded from a VCS.
...@@ -38,8 +37,8 @@ case, care must be taken that the directory name only exists if the ...@@ -38,8 +37,8 @@ case, care must be taken that the directory name only exists if the
source code is fully ready. Otherwise Makefile dependencies will break source code is fully ready. Otherwise Makefile dependencies will break
(this is not an issue for files, only directories). (this is not an issue for files, only directories).
libfoo: $(TARBALLS)/libfoo-$(FOO_VERSION).tar.bz2 .sum-foo libfoo: libfoo-$(FOO_VERSION).tar.bz2 .sum-foo
$(EXTRACT_BZ2) # to libfoo-$(FOO_VERSION) $(UNPACK) # to libfoo-$(FOO_VERSION)
### apply patches here ### ### apply patches here ###
# last command: make the target directory # last command: make the target directory
mv libfoo-$(FOO_VERSION) libfoo mv libfoo-$(FOO_VERSION) libfoo
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment