Skip to content

Commit 62e2ea5

Browse files
committed
Added correct license, cleaned up conanfile
1 parent d4bd7c7 commit 62e2ea5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

conanfile.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@ class LibnameConan(ConanFile):
99
name = "libfvad"
1010
version = "1.0"
1111
description = "Voice activity detection (VAD) library"
12-
# topics can get used for searches, GitHub topics, Bintray tags etc. Add here keywords about the library
1312
topics = ("voice", "vad")
1413
url = "https://github.com/TMiguelT/conan-libfvad"
1514
homepage = "https://github.com/dpirch/libfvad"
1615
author = "Bincrafters <[email protected]>"
17-
license = "MIT" # Indicates license type of the packaged library; please use SPDX Identifiers https://spdx.org/licenses/
18-
exports = ["LICENSE.md"] # Packages the license for the conanfile.py
16+
license = "BSD-3-Clause"
17+
exports = ["LICENSE.md"]
1918

2019
# Options may need to change depending on the packaged library.
2120
settings = "os", "arch", "compiler", "build_type"
@@ -33,7 +32,6 @@ def source(self):
3332
tools.get(archive_url, sha256="09dd6f01ff91458bbcf411bc803b2f7d5825abda626f8adc6eea30c088a3859a")
3433
extracted_dir = self.name + "-" + self.version
3534

36-
# Rename to "source_subfolder" is a convention to simplify later steps
3735
os.rename(extracted_dir, self._source_subfolder)
3836

3937
def build(self):

0 commit comments

Comments
 (0)